url: http://smslogin.mobi

username: happysch
password: 123456

----------------
What is an API?
A	Application Programming Interface.
Q	How can I use the API to send SMS?
A	http://smslogin.mobi/spanelv2/api.php?username=xxxx&password=xxxx&to=xxxxxxxxx&from=xxxxxxxx&message=xxxxxxxxxxxx 
Response: Provides MessageID for future reference.
Q	How can I send multiple messages through API?
A	http://smslogin.mobi/spanelv2/api.php?username=xxxx&password=xxxx&to=xxxxxxxxx,xxxxxxxxx,xxxxxxxxxx&from=xxxxxxxx&message=xxxxxxxxxxxx 
Response: Provides MessageID for future reference. Note: Multiple mobile numbers should be seperated by ",".
Q	How can I send Flash Message through API?
A	http://smslogin.mobi/spanelv2/api.php?username=xxxx&password=xxxx&to=xxxxxxxxx,xxxxxxxxx,xxxxxxxxxx&from=xxxxxxxx&message=xxxxxxxxxxxx&flash=true 
Response: Provides MessageID for future reference. Note: Multiple mobile numbers should be seperated by ";".
Q	How can I get Delivery Reports through API?
A	http://smslogin.mobi/spanelv2/api.php?username=xxxx&password=xxxx&msgid=417a3b098442ba35
Response: 
+919XXXXXXXXX-Submitted;
+919XXXXXXXXX-Successfully Deliverd;
+919XXXXXXXXX-Message Failed;
+919XXXXXXXXX-Message Invalid;
Q	How can I find Credit balance through API?
A	http://smslogin.mobi/spanelv2/api.php?username=xxxx&password=xxxx 
Response: Returns No of Credits.
Q	How can I use API in Dotnet coding ?
A	Create a method as below. 
     private static string GetPageContent(string FullUri) 
    {
        HttpWebRequest Request;
        StreamReader ResponseReader;
        Request = ((HttpWebRequest)(WebRequest.Create(FullUri)));
        ResponseReader = new StreamReader(Request.GetResponse().GetResponseStream());
        return ResponseReader.ReadToEnd();
    }

In Button Click Event 
    Protected ButtonClick Event
    {
        String result = GetPageContent("http://smslogin.mobi/spanelv2/api.php?username=xxxx&password=xxxx&to=xxxxxxxxx&from=xxxxxxxx&message=xxxxxxxxxxxx");
    }
Q	How can I use API in PHP coding ?
A	
< ?php 
$msg = "XXXXXXXXXXXXXXXXX";    //Message Here

$url = "http://smslogin.mobi/spanelv2/api.php?username=xxxx&password=xxxx&to=xxxxxxxxx&from=xxxxxxxx&message=".urlencode($msg);    //Store data into URL variable

$ret = file($url);    //Call Url variable by using file() function

echo $ret;    //$ret stores the msg-id

?>